home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 2
/
Amiga Tools 2.iso
/
dfue
/
elcheapofax
/
faxcmd
/
libfax
/
rcs
/
read.h,v
< prev
next >
Wrap
Text File
|
1995-03-09
|
2KB
|
138 lines
head 1.3;
access;
symbols
OCT93:1.3;
locks;
comment @ * @;
1.3
date 93.09.18.20.16.23; author Rhialto; state Exp;
branches;
next 1.2;
1.2
date 93.06.11.16.15.25; author Rhialto; state Exp;
branches;
next 1.1;
1.1
date 93.06.11.15.19.27; author Rhialto; state Exp;
branches;
next ;
desc
@Prototypes for (former) read.c
@
1.3
log
@Unconditional prototypes.
@
text
@/* $Id: read.h,v 1.2 1993/06/11 16:15:25 Rhialto Exp $
* $Log: read.h,v $
* Revision 1.2 1993/06/11 16:15:25 Rhialto
* First real RCS checkin
*
*/
/*
read.h
(c) Copyright 1991 by David M. Siegel.
All rights reserved.
%W% %G% %U%
*/
#ifndef in_libfax_read_h
#define in_libfax_read_h 1
/*
Prototypes:
*/
int tread(int fd, char *buf, int bufsize, int timeout);
int pread(int fd, char *buf, int bufsize);
int fdgets(int fd, char *buf, int bufsize);
int tfdgets(int fd, char *buf, int bufsize, int timeout);
int wait_for_char(int fd, char c_expect, int timeout);
int wait_for_string(int fd, char *s_expect, int timeout);
#endif
@
1.2
log
@First real RCS checkin
@
text
@d1 5
a5 2
/* $Id$
* $Log$
d23 6
a28 49
int tread(
#ifdef _PROTO
int fd,
char *buf,
int bufsize,
int timeout
#endif
);
int pread(
#ifdef _PROTO
int fd,
char *buf,
int bufsize
#endif
);
int fdgets(
#ifdef _PROTO
int fd,
char *buf,
int bufsize
#endif
);
int tfdgets(
#ifdef _PROTO
int fd,
char *buf,
int bufsize,
int timeout
#endif
);
int wait_for_char(
#ifdef _PROTO
int fd,
char c_expect,
int timeout
#endif
);
int wait_for_string(
#ifdef _PROTO
int fd,
char *s_expect,
int timeout
#endif
);
@
1.1
log
@Initial revision
@
text
@d1 3
@